home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue61 / Stream / uMaker.dfm < prev    next >
Encoding:
Text File  |  2000-04-11  |  6.6 KB  |  292 lines

  1. object Form1: TForm1
  2.   Left = 210
  3.   Top = 107
  4.   Width = 574
  5.   Height = 377
  6.   Caption = 'Screen Saver Maker'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Menu = MainMenu1
  14.   OldCreateOrder = False
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Splitter1: TSplitter
  20.     Left = 289
  21.     Top = 35
  22.     Width = 3
  23.     Height = 277
  24.     Cursor = crHSplit
  25.   end
  26.   object ListFiles: TListBox
  27.     Left = 0
  28.     Top = 35
  29.     Width = 289
  30.     Height = 277
  31.     Align = alLeft
  32.     ItemHeight = 13
  33.     TabOrder = 0
  34.     OnClick = ListFilesClick
  35.   end
  36.   object Panel1: TPanel
  37.     Left = 292
  38.     Top = 35
  39.     Width = 274
  40.     Height = 277
  41.     Align = alClient
  42.     BevelInner = bvRaised
  43.     BevelOuter = bvLowered
  44.     TabOrder = 1
  45.     object Splitter2: TSplitter
  46.       Left = 62
  47.       Top = 90
  48.       Width = 3
  49.       Height = 97
  50.       Cursor = crHSplit
  51.     end
  52.     object Splitter3: TSplitter
  53.       Left = 2
  54.       Top = 87
  55.       Width = 270
  56.       Height = 3
  57.       Cursor = crVSplit
  58.       Align = alTop
  59.     end
  60.     object Splitter4: TSplitter
  61.       Left = 199
  62.       Top = 90
  63.       Width = 3
  64.       Height = 97
  65.       Cursor = crHSplit
  66.       Align = alRight
  67.     end
  68.     object Splitter5: TSplitter
  69.       Left = 2
  70.       Top = 187
  71.       Width = 270
  72.       Height = 3
  73.       Cursor = crVSplit
  74.       Align = alBottom
  75.     end
  76.     object Panel2: TPanel
  77.       Left = 2
  78.       Top = 2
  79.       Width = 270
  80.       Height = 85
  81.       Align = alTop
  82.       BevelOuter = bvNone
  83.       TabOrder = 0
  84.     end
  85.     object Panel3: TPanel
  86.       Left = 202
  87.       Top = 90
  88.       Width = 70
  89.       Height = 97
  90.       Align = alRight
  91.       BevelOuter = bvNone
  92.       TabOrder = 1
  93.     end
  94.     object Panel4: TPanel
  95.       Left = 2
  96.       Top = 190
  97.       Width = 270
  98.       Height = 85
  99.       Align = alBottom
  100.       BevelOuter = bvNone
  101.       TabOrder = 2
  102.     end
  103.     object Panel5: TPanel
  104.       Left = 2
  105.       Top = 90
  106.       Width = 60
  107.       Height = 97
  108.       Align = alLeft
  109.       BevelOuter = bvNone
  110.       TabOrder = 3
  111.     end
  112.     object Panel8: TPanel
  113.       Left = 65
  114.       Top = 90
  115.       Width = 134
  116.       Height = 97
  117.       Align = alClient
  118.       BevelInner = bvRaised
  119.       BevelOuter = bvLowered
  120.       TabOrder = 4
  121.       object ImagePreview: TImage
  122.         Left = 2
  123.         Top = 2
  124.         Width = 130
  125.         Height = 93
  126.         Align = alClient
  127.         Stretch = True
  128.       end
  129.     end
  130.   end
  131.   object StatusBar: TStatusBar
  132.     Left = 0
  133.     Top = 312
  134.     Width = 566
  135.     Height = 19
  136.     Panels = <
  137.       item
  138.         Bevel = pbNone
  139.         Width = 200
  140.       end
  141.       item
  142.         Width = 100
  143.       end>
  144.     SimplePanel = False
  145.   end
  146.   object Panel6: TPanel
  147.     Left = 0
  148.     Top = 0
  149.     Width = 566
  150.     Height = 35
  151.     Align = alTop
  152.     Alignment = taLeftJustify
  153.     BevelInner = bvRaised
  154.     BevelOuter = bvLowered
  155.     Caption = ' Text:'
  156.     TabOrder = 3
  157.     object eText: TEdit
  158.       Left = 32
  159.       Top = 8
  160.       Width = 525
  161.       Height = 21
  162.       TabOrder = 0
  163.     end
  164.   end
  165.   object OpenScr: TOpenDialog
  166.     DefaultExt = 'SCR'
  167.     FileName = '*.scr'
  168.     Filter = 'Screen Savers (*.scr)|*.scr'
  169.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  170.     Title = 'Select a Screen Saver File'
  171.     Left = 16
  172.     Top = 24
  173.   end
  174.   object SaveScr: TSaveDialog
  175.     DefaultExt = 'SCR'
  176.     FileName = 'NewScreenSaver.SCR'
  177.     Filter = 'Screen Saver (*.scr)|*.scr'
  178.     Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
  179.     Title = 'Create your Screen Saver'
  180.     Left = 48
  181.     Top = 24
  182.   end
  183.   object OpenPic: TOpenPictureDialog
  184.     DefaultExt = 'jpg'
  185.     FileName = '*.jpg'
  186.     Options = [ofHideReadOnly, ofAllowMultiSelect, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  187.     Title = 'Select Images to Add'
  188.     Left = 80
  189.     Top = 28
  190.   end
  191.   object ActionList: TActionList
  192.     Left = 16
  193.     Top = 86
  194.     object ActionNew: TAction
  195.       Category = 'File'
  196.       Caption = 'Start &New Screensaver'
  197.       Hint = 'Clear the current screensaver and start a new one'
  198.       ShortCut = 16462
  199.       OnExecute = btnNewClick
  200.     end
  201.     object ActionBuild: TAction
  202.       Category = 'File'
  203.       Caption = '&Build Screensaver'
  204.       Enabled = False
  205.       Hint = 'Build the current screensaver'
  206.       ShortCut = 16504
  207.       OnExecute = btnCreateClick
  208.     end
  209.     object ActionLoad: TAction
  210.       Category = 'File'
  211.       Caption = '&Load Screensaver'
  212.       Hint = 'Load from an existing screensaver'
  213.       ShortCut = 16460
  214.       OnExecute = btnLoadClick
  215.     end
  216.     object ActionAddImage: TAction
  217.       Category = 'Images'
  218.       Caption = '&Add Image'
  219.       Hint = 'Add an image to the current screensaver'
  220.       ShortCut = 16449
  221.       OnExecute = btnAddClick
  222.     end
  223.     object ActionDeleteImage: TAction
  224.       Category = 'Images'
  225.       Caption = '&Delete Image'
  226.       Enabled = False
  227.       Hint = 'Delete the selected image from the current screensaver'
  228.       ShortCut = 16452
  229.       OnExecute = btnDeleteClick
  230.     end
  231.     object ActionUp: TAction
  232.       Category = 'Images'
  233.       Caption = 'Move &Up'
  234.       Enabled = False
  235.       Hint = 'Move the selected image up in the image list'
  236.       ShortCut = 16422
  237.       OnExecute = btnUpClick
  238.     end
  239.     object ActionDown: TAction
  240.       Category = 'Images'
  241.       Caption = 'Move &Down'
  242.       Enabled = False
  243.       Hint = 'Move the selected image down in the image list'
  244.       ShortCut = 16424
  245.       OnExecute = btnDownClick
  246.     end
  247.   end
  248.   object MainMenu1: TMainMenu
  249.     Left = 68
  250.     Top = 104
  251.     object File1: TMenuItem
  252.       Caption = '&File'
  253.       object NewScreensaver1: TMenuItem
  254.         Action = ActionNew
  255.       end
  256.       object N1: TMenuItem
  257.         Caption = '-'
  258.       end
  259.       object CreateNewScreensaver1: TMenuItem
  260.         Action = ActionBuild
  261.       end
  262.       object LoadExistingScreensaver1: TMenuItem
  263.         Action = ActionLoad
  264.       end
  265.       object N2: TMenuItem
  266.         Caption = '-'
  267.       end
  268.       object Exit1: TMenuItem
  269.         Caption = 'E&xit'
  270.       end
  271.     end
  272.     object List1: TMenuItem
  273.       Caption = '&Images'
  274.       object AddImage1: TMenuItem
  275.         Action = ActionAddImage
  276.       end
  277.       object DeleteImage1: TMenuItem
  278.         Action = ActionDeleteImage
  279.       end
  280.       object N3: TMenuItem
  281.         Caption = '-'
  282.       end
  283.       object MoveUp1: TMenuItem
  284.         Action = ActionUp
  285.       end
  286.       object MoveDown1: TMenuItem
  287.         Action = ActionDown
  288.       end
  289.     end
  290.   end
  291. end
  292.